题目链接 :HDU - 4389
X mod f(x)
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3619 Accepted Submission(s): 1409
Problem Description
Here is a function f(x):
int f ( int x ) {
if ( x == 0 ) return 0;
return f ( x / 10 ) + x % 10;
}
Now, you want to know, in a given interval [A, B] (1 <= A <= B <= 109), how many integer x that mod f(x) equal to 0.
Input
The first line has an integer T (1 <= T <= 50), indicate the number of test cases.
Each test case has two integers A, B.
Output
For each test case, output only one line containing the case number and an integer indicated the number of x.
Sample Input
2
1 10
11 20
Sample Output
Case 1: 10
Case 2: 3
Author
WHU
Source
2012 Multi-University Training Contest 9
Recommend
zhuyuanchen520
数位DP
所有数的和最大不超过82
dp[pos][sum][mod][res] ,pos 第几位,sum 到第几位每个位数加起来的和,mod, 取模多少 。余数是res ,状态下有多少个数。
然后直接用for暴力取模的数的所有情况。
套个数位DP的板子就行
1 | #include<iostream> |